home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / hal.postrm < prev    next >
Text File  |  2008-10-26  |  708b  |  30 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Automatically added by dh_installinit
  6. if [ "$1" = "purge" ] ; then
  7.     update-rc.d hal remove >/dev/null || exit $?
  8. fi
  9. # End automatically added section
  10.  
  11.  
  12. if [ "$1" = "purge" ] ; then
  13.     # Tell dbus to reload it's configuration files only, when we purge the
  14.     # package, i.e. when we remove its conffiles in /etc/dbus-1/system.d/
  15.       if [ -x /etc/init.d/dbus ]; then
  16.         invoke-rc.d dbus force-reload || true
  17.       fi
  18.  
  19.     if [ -x "$(command -v deluser)" ]; then
  20.             deluser --quiet --system haldaemon > /dev/null || true
  21.     else
  22.         echo >&2 "Not removing haldaemon system account because deluser command was not found"
  23.     fi
  24.  
  25.     rm -f /var/cache/hald/fdi-cache
  26.     rmdir /var/cache/hald || true
  27. fi
  28.  
  29. exit 0
  30.